home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS13.ADF / FutureSound / sounderrors.c < prev    next >
C/C++ Source or Header  |  1986-08-05  |  808b  |  37 lines

  1. /* SoundErrors.c */
  2. /* Error handling routine for FutureSound auxiliary library */
  3.  
  4. /* Changed, 6/22/86 by John Foust */
  5. /* removed call to printf() for 'fs.library' code - jjf 6/21/86 */
  6. /* changed return value of Error() from 0 to ErrFlag - jjf 6/21/86 */
  7.  
  8. #include "types.h"
  9. #include "SoundErrors.h"
  10.  
  11.  
  12. /* added this variable - jjf */
  13. /* This is a way of getting the error code back to the user */
  14. long GlobalError;
  15.  
  16. char *ErrMsg[] = {
  17.    "File Open Failed",
  18.    "File Read Error",
  19.    "Device Open Failed",
  20.    "Create Port Failed",
  21.    "Not Enough Memory for IORequest",
  22.    "BeginIO Failed",
  23.    "IFF Format Error"
  24. };
  25.  
  26.  
  27. UWORD Error(ErrFlag,ProgMsg)
  28. int ErrFlag;
  29. char *ProgMsg;
  30. {
  31. /* removed printf() call - jjf */
  32.    GlobalError = ErrFlag;
  33. /*   printf("%s - %s\n",ErrMsg[ErrFlag],ProgMsg); */
  34.    return(0);
  35. }
  36.  
  37.